home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 1 / QRZ Ham Radio Callsign Database - December 1993.iso / ucsd / packet / tcpip / net / netamsrc.arc / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-12  |  854 b   |  28 lines

  1. /* Software options */
  2. #define    SERVERS        1    /* Include TCP servers */
  3. #define    TRACE        1    /* Include packet tracing code */
  4. #define    NSESSIONS    10    /* Number of interactive clients */
  5.  
  6. /* Hardware configuration */
  7. #undef    PC_EC            /* 3-Com 3C501 Ethernet controller */
  8. #define    SLIP        1    /* Serial Line IP subnet code */
  9. #define    KISS        1    /* KISS TNC code */
  10. #undef    HAPN            /* Hamilton Area Packet Network driver code */
  11. #undef    EAGLE            /* Eagle card driver */
  12. #undef    PC100            /* PAC-COM PC-100 driver code */
  13. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  14.  
  15. #if (defined(KISS) || defined(HAPN) || defined(EAGLE) || defined(PC100))
  16. #define    AX25        1        /* AX.25 subnet code */
  17. #endif
  18.  
  19. /* KISS TNC implies SLIP */
  20. #if (defined(KISS))
  21. #undef    SLIP
  22. #define    SLIP        1    /* Serial Line IP subnet code */
  23. #endif
  24.  
  25. #ifdef    PC_EC
  26. #define    ETHER    1        /* Generic Ethernet code */
  27. #endif
  28.